home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / CHASSIS_ / MAINCLOS.C < prev    next >
Text File  |  1992-05-14  |  426b  |  17 lines

  1. /************************************************************************************/
  2. /*    MainCloseProc                                                                    */
  3. /************************************************************************************/
  4.  
  5. #include "MyHeaders.h"
  6.  
  7. int MainCloseProc ()
  8. {
  9.     int        MCRetCode = 0;
  10.  
  11.     CloseWindow((windTbl[0]).windPtr);                /* close main window            */
  12.     (windTbl[0]).windPtr = 0;                        /* indicate closed                */
  13.     
  14.     return    MCRetCode;
  15.  
  16. }
  17.